1. 628. 三个数的最大乘积

**[terminal]
//给定一个二进制数组, 计算其中最大连续1的个数。
//示例 1:
//输入: [1,1,0,1,1,1]
//输出: 3
//解释: 开头的两位和最后的三位都是连续1,所以最大连续1的个数是 3.
//
// 注意:
// 输入的数组只包含 0 和1。
// 输入数组的长度是正整数,且不超过 10,000。
//
// Related Topics 数组
// 👍 165 👎 0

class Solution {
    public int findMaxConsecutiveOnes(int[] nums) {
     int count = 0;
     int maxCount = 0;
     for(int i=0;i<nums.length;i++){
         if(nums[i] == 1){
             count++;
         }
         if(nums[i] == 0){
             if(count>maxCount){
                 maxCount = count;
             }
             count = 0;
         }
     }
     return count>maxCount?count:maxCount;
    }
}

Info styling

[info] For info

Use this for infomation messages.

Warning styling

[warning] For warning

Use this for warning messages.

Danger styling

[danger] For danger

Use this for danger messages.

Success styling

[success] For info

Use this for success messages.

© gaohueric all right reserved,powered by Gitbook文件修订时间: 2021-12-08 23:22:22

results matching ""

    No results matching ""